home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD ROM Paradise Collection 4
/
CD ROM Paradise Collection 4 1995 Nov.iso
/
program
/
swags_z.zip
/
SCREEN.SWG
/
0002_CLRSCR2.PAS.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1993-05-28
|
330b
|
13 lines
{
>How do you Write a clear screen Procedure in standard pascal for
>the vax system? I talking about a nice clear screen prgm that does't
>scroll everything off the screen. Something that works in a flash..
}
Const
clear_screen = CHR(27) + CHR(91) + CHR(50) +CHR(74);
begin
Write(clear_screen);
readln;
end.